type github.com/jackc/pgx/v5.structRowField
14 uses
github.com/jackc/pgx/v5 (current package)
rows.go#L602: func lookupStructFields(t reflect.Type) []structRowField {
rows.go#L604: return cached.([]structRowField)
rows.go#L608: fields := computeStructFields(t, make([]structRowField, 0, t.NumField()), &fieldStack)
rows.go#L610: return fieldsIface.([]structRowField)
rows.go#L615: fields []structRowField,
rows.go#L617: ) []structRowField {
rows.go#L632: fields = append(fields, structRowField{
rows.go#L708: fields []structRowField
rows.go#L733: make([]structRowField, len(fldDescs)),
rows.go#L777: fields []structRowField,
rows.go#L779: ) ([]structRowField, string) {
rows.go#L822: fields[fpos] = structRowField{
rows.go#L860: type structRowField struct {
rows.go#L864: func setupStructScanTargets(receiver any, fields []structRowField) []any {